home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh -e
-
- case "$1" in
- upgrade|remove)
- # rm -rf /var/lib/mozilla-thunderbird/chrome/overlayinfo
- # rm -f /usr/lib/mozilla-thunderbird/chrome/chrome.rdf
- # rm -f /var/lib/mozilla-thunderbird/chrome/*.rdf
- # rm -f /var/lib/mozilla-thunderbird/chrome/installed-chrome.txt
- # rm -f /var/lib/mozilla-thunderbird/components/*.dat
- # rm -f /usr/lib/mozilla-thunderbird/components/*.dat
-
- # if [ -L /usr/lib/mozilla-thunderbird/defaults/pref ]; then
- # rm -f /usr/lib/mozilla-thunderbird/defaults/pref
- # fi
- # if [ -L /usr/lib/mozilla-thunderbird/greprefs ]; then
- # rm -f /usr/lib/mozilla-thunderbird/greprefs
- # fi
-
- # if [ -d /var/lib/mozilla-thunderbird/ ]; then
- # find /var/lib/mozilla-thunderbird/ -type d -empty \
- # | xargs --no-run-if-empty rmdir --ignore-fail-on-non-empty -p
- # fi
- ;;
- *)
- ;;
- esac
-
-